home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
HPAVC
/
HPAVC CD-ROM.iso
/
VAP2VOX.ZIP
/
vapdir.h
< prev
next >
Wrap
Text File
|
1994-11-06
|
632b
|
19 lines
/* vapdir.h - .VAP file directory structures */
typedef struct vap_directory_header
{
unsigned long max_prompts; /* Maximum prompts in file */
unsigned long sampling_rate; /* Sampling rate for this file */
unsigned long total_prompts; /* Total prompts currently in file */
unsigned long reserved0;
unsigned long bytes; /* Bytes used in file */
unsigned long reserved1;
} VAPDIRHDR;
typedef struct vap_retrieval_entry
{
unsigned long start; /* Start of speech offset in file */
unsigned long length; /* Length of speech segment (bytes) */
unsigned long text; /* Offset in file of annotation */
} VAPENTRY;